home *** CD-ROM | disk | FTP | other *** search
/ Macworld Expo - Develope…Central & Net Innovations / Developer Central and Net Innovators (MacWorld Expo) (January 1999).iso / Developer Central / Bowers Development / Demo AppMaker / Examples / PowerPlant / Everything / EverythingMain.cp < prev   
Encoding:
Text File  |  1998-10-11  |  382 bĀ   |  25 lines  |  [TEXT/CWIE]

  1. // EverythingMain.cp -- Main
  2.  
  3. #include "CEverythingApp.h"
  4.  
  5. #include <LGrowZone.h>
  6. #include <UDebugging.h>
  7. #include <UDrawingState.h>
  8. #include <UMemoryMgr.h>
  9.  
  10. //----------
  11. void
  12. main()
  13. {
  14.     SetDebugThrow_(debugAction_Alert);
  15.     SetDebugSignal_(debugAction_Alert);
  16.  
  17.     InitializeHeap(3);
  18.     UQDGlobals::InitializeToolbox(&qd);
  19.  
  20.     new LGrowZone(20000);
  21.  
  22.     CEverythingApp    theApp;
  23.     theApp.Run();
  24. }
  25.